home *** CD-ROM | disk | FTP | other *** search
/ Champak 49 / Volume 49 - JOGO DISK .iso / Games / flappy.swf / scripts / frame_5 / PlaceObject2_102_17 / CLIPACTIONRECORD onClipEvent(enterFrame).as next >
Encoding:
Text File  |  2007-09-27  |  477 b   |  21 lines

  1. onClipEvent(enterFrame){
  2.    if(_root.gameOver == "true" and this._currentframe < 12)
  3.    {
  4.       this.gotoAndPlay("fall");
  5.    }
  6.    if(_root.scrollSpeed < 25 and _root.BigBird.scrollStart == true)
  7.    {
  8.       _root.scrollSpeed += 0.01;
  9.    }
  10.    if(_root.sky._x > -1200 and _root.BigBird.scrollStart == true)
  11.    {
  12.       _root.sky._x -= 2;
  13.    }
  14.    else
  15.    {
  16.       _root.sky._x = 0;
  17.    }
  18.    this._x = _root.BigBird._x - 175;
  19.    this._y = _root.BigBird._y - 120;
  20. }
  21.